home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / CURRENT / 000064_fdc@panix.com_Tue Jan 30 14:20:19 2007.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: reader2.panix.com!reader1.panix.com!panix!not-for-mail
  2. From: Frank da Cruz <fdc@panix.com>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: record length translate
  5. Date: Tue, 30 Jan 2007 19:20:11 +0000 (UTC)
  6. Organization: PANIX Public Access Internet and UNIX, NYC
  7. Lines: 23
  8. Message-ID: <slrnerv6jb.8p2.fdc@panix2.panix.com>
  9. References: <EvKdnTZhodermCPYnZ2dnUVZ_qunnZ2d@clg.qc.ca>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: panix2.panix.com
  12. X-Trace: reader2.panix.com 1170184811 5016 166.84.1.2 (30 Jan 2007 19:20:11 GMT)
  13. X-Complaints-To: abuse@panix.com
  14. NNTP-Posting-Date: Tue, 30 Jan 2007 19:20:11 +0000 (UTC)
  15. User-Agent: slrn/0.9.8.0 (NetBSD)
  16. Xref: panix comp.protocols.kermit.misc:15637
  17.  
  18. On 2007-01-29, Don Lewis <dlewis@dawsoncollege.qc.ca> wrote:
  19. : I'm using Kermit 8.0.209 under VMS 7.3-2
  20. : I receive a ziped archive of files which are created on a system using code 
  21. : page 850.  I need the data to be iso-latin1. Kermit translates the 
  22. : characters correctly using the command translate source-file cp850 
  23. : latin1-iso translated-file.  The problem is that Kermit breaks up records 
  24. : that are longer than 254 bytes into multiple 254 byte records.  The incoming 
  25. : file is defined as stream_lf with carriage return carriage control.  I can 
  26. : convert the file to variable with a declared record length, but Kermit still 
  27. : breaks up long records.  Is there a setting to change this behavior, or is 
  28. : 254 bytes a Kermit limitation?
  29. :
  30. I believe it's just that, in the TRANSLATE command (as in the COPY command),
  31. Kermit just uses regular C library i/o, rather than RMS.  If you transferred
  32. the files unzipped, Kermit could convert the character sets on the fly ("set
  33. file character-set", "set transfer character-set") and store them in a
  34. sensible record format.
  35.  
  36. There might be a way to force matters using some crazy syntax in the
  37. destination filename, but I don't remember enough about VMS to say for sure.
  38. Of course, any VMS programmers are welcome to take a look at this and jump in.
  39.  
  40. - Frank